UNPKG

@lobehub/chat

Version:

Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.

16 lines (13 loc) 275 B
export const MIGRATE_KEY = 'migrated'; export enum UpgradeStatus { START, UPGRADING, UPGRADED, UPGRADE_FAILED, } export const V1DB_NAME = 'LobeHub'; export const V1DB_TABLE_NAME = 'LOBE_CHAT'; export interface MigrationError { message: string; stack: string; }